func runtime.cheaprand64

5 uses

	runtime (current package)
		mprof.go#L520: 	if rate <= 0 || (rate > cycles && cheaprand64()%rate > cycles) {
		mprof.go#L748: 		prevScore := uint64(cheaprand64()) % uint64(prev)
		mprof.go#L749: 		thisScore := uint64(cheaprand64()) % uint64(cycles)
		mprof.go#L901: 	if rate > 0 && cheaprand64()%rate == 0 {
		rand.go#L235: func cheaprand64() int64 {